BenSelect Documentation
Step-down script - Age Bands
Send Feedback
JScript Examples > JScript for Plans > Step-down script - Age Bands

Glossary Item Box

The system currently experiences the following anomaly when applying step-down percentages for age bands. An employee whose age falls into one of these age bands is not able to elect that plan. The plan appears grayed out.
 
Example:
Age band of 70+ with a step-down percentage of 70%:


 

Script to enable the plan for an age-band:

effective = Event.Config.EffectiveDate;

dob = Event.Employee.EmployeePerson.DOB;

var age = effective.Year - dob.Year;

if (dob.Month > effective.Month || dob.Month == effective.Month && dob.Day > effective.Day) age--;

if (age > 70) { var newMax = Event.Config.MaxBenefitAmount * .70; Event.Config.MaxBenefitAmount = newMax; }

else if (age > 75) { var newMax = Event.Config.MaxBenefitAmount * .50; Event.Config.MaxBenefitAmount = newMax; }



The above script example addresses two age bands, as depicted by:


if
(age > 70)


{


var
newMax = Event.Config.MaxBenefitAmount * .70;


Event.Config.MaxBenefitAmount = newMax;


} and


else if (age > 75)


{


var
newMax = Event.Config.MaxBenefitAmount * .50;


Event.Config.MaxBenefitAmount = newMax;


}

Subsequent age bands may be added in the same fashion. The ".70" and the ".50" are the step-down percentages.

©2024. All Rights Reserved.